home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue35 / clinic / ChildU.pas < prev    next >
Pascal/Delphi Source File  |  1997-12-08  |  299b  |  24 lines

  1. unit ChildU;
  2.  
  3. interface
  4.  
  5. uses
  6.   WinProcs, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
  7.  
  8. type
  9.   TForm2 = class(TForm)
  10.   private
  11.     { Private declarations }
  12.   public
  13.     { Public declarations }
  14.   end;
  15.  
  16. var
  17.   Form2: TForm2;
  18.  
  19. implementation
  20.  
  21. {$R *.DFM}
  22.  
  23. end.
  24.